home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Serious Demos / MacWebCam 2.7 / Sample AppleScripts / Digitizer scripts < prev    next >
Text File  |  1997-01-12  |  534b  |  14 lines

  1. -- Example AppleScript to show how to get/set various parameters
  2.  
  3. tell application "MacWebCam"
  4.     get brightness of digitizer of active document
  5.     get hue of digitizer of active document
  6.     get saturation of digitizer of active document
  7.     get contrast of digitizer of active document
  8.     get sharpness of digitizer of active document
  9.     get black level of digitizer of active document
  10.     get white level of digitizer of active document
  11.     get number of inputs of digitizer of active document
  12.     set input of digitizer of active document to 1
  13. end tell
  14.